home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / misc / evenmore / rexx / wierdtext.rexx < prev   
OS/2 REXX Batch file  |  1999-04-28  |  344b  |  21 lines

  1. /* */
  2.  
  3. if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
  4.  
  5. address 'EvenMore.1'
  6. options results
  7.  
  8. "GETFILENAME"
  9. filename = RESULT
  10.  
  11. /* Command can be JIVE, LAMER, CRAZYTEXT, CHEF, etc
  12. */ Get these on aminet
  13.  
  14. address command 'C:jive <'filename' >RAM:wierdtext'
  15.  
  16. "OPEN Ram:wierdtext"
  17.  
  18. delete('Ram:wierdtext')
  19.  
  20. exit
  21.